#menu-principal {
  position: absolute;
  z-index: 2;
  width: 100%;
}

#menu-principal .navbar {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

.navbar-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.navbar_responsivo {
  display: none;
}

#menu-principal .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo {
  display: block;
  width: 150px;
}

@media only screen and (max-width: 992px) {
  #menu-principal {
    position: relative;
    display: block;
    right: 0;
  }

  .navbar-logo {
    width: 100px;
    left: 10px;
    position: relative;
  }

  .navbar-logo img {
    width: 100%;
  }

  #menu-principal {
    height: auto;
  }

  .navMenu {
    display: none;
  }

  .navbar_responsivo {
    display: block;
    background-color: #056f60;
  }

  .content_navbar-responsivo {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 0 0 12px;
    box-sizing: border-box;
  }

  .itens-menu-responsivo {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #056f60;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .itens-menu-responsivo.is-open {
    transform: translateX(0);
  }

  .itens-menu-responsivo ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    margin-top: 120px;
    padding: 0;
  }

  .itens-menu-responsivo ul li {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .itens-menu-responsivo ul li:last-child {
    border-bottom: none;
  }

  .itens-menu-responsivo ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
  }
}

.btn {
  display: flex;
  width: min-content;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 130px;
  padding: 10px 20px;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s ease all;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  background-color: #8f69d4;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
}

.btn_two {
  background-color: #fff;
  color: #7d37e2;
  padding: 12px 40px;
  min-height: auto;
}

.btn-three {
  min-height: 48px;
  padding: 0px 20px 0px 16px;
  gap: 4px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
}

.btn_text-laranja {
  color: #ffa273;
}

.btn:hover {
  background-color: #7d37e2;
}

.btn-three:hover {
  background-color: #fff;
  color: #7d37e2;
}

.btn-three:hover svg path {
  stroke: #7d37e2;
}

.btn svg {
  display: block;
  width: 24px;
  height: 24px;
  transition: 0.3s ease all;
}

.btn svg path {
  transition: 0.3s ease all;
}

.btn-flutuante {
  position: fixed;
  right: 5vw;
  bottom: 20vh;
  z-index: 9;
}

.btn-flutuante__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: 0.3s ease all;
  overflow: hidden;
  text-decoration: none;
  border-radius: 4px 32px 32px 4px;
  padding: 15px 0;
}

.btn-flutuante__overflow {
  transform: translateX(110%);
  transition: 0.5s ease all;
}

.btn-flutuante__content:hover .btn-flutuante__overflow {
  transform: translateX(0%);
}

.btn-flutuante__text {
  border-radius: 4px 32px 32px 4px;
  background: #f9fafb;
  box-shadow: 0px 2px 7px -1px rgba(0, 0, 0, 0.2);
  padding: 8px 70px 6px 12px;
  max-width: 150px;
}

.btn-flutuante__text p {
  margin: 0;
}

.btn-flutuante__title {
  color: #00ab5f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1em;
}

.btn-flutuante__lead {
  color: #4f587e;
  font-size: 11px;
  font-weight: 400;
  line-height: 1em;
}

.btn-flutuante__icon {
  display: flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  background: #00ab5f;
  position: absolute;
  right: 0;
}

.btn-flutuante__icon svg {
  display: block;
  width: 40px;
  height: 40px;
}

@media only screen and (max-width: 992px) {
  .btn-flutuante {
    bottom: 5vh;
  }
}

.hero {
  position: relative;
  width: 100%;
  z-index: 1;
  height: 400px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero_desktop {
  display: block;
}

.hero_mobile {
  display: none;
}

@media only screen and (max-width: 992px) {
  .hero {
    height: 400px;
  }

  .hero_desktop {
    display: none;
  }

  .hero_mobile {
    display: block;
  }
}

.sobre__corpo {
  display: flex;
}

.sobre__corpo h1 {
  color: #95c11f;
  font-size: 24px;
  font-style: italic;
  font-weight: 750;
  font-family: "UniversNextPro-BlackItalic", sans-serif;
}

.sobre__corpo p {
  font-size: 16px;
  font-weight: 400;
  color: #48536c;
  line-height: 180%;
}

.sobre__corpo-img {
  width: 500px;
}

@media screen and (max-width: 768px) {
  .sobre__corpo {
    display: block;
  }

  .sobre__corpo-img {
    display: none;
  }
}

.section__regulamento-corpo {
  position: relative;
}

.section__regulamento-corpo img {
  width: 100%;
}

.section__regulamento-content {
  position: absolute;
  width: calc(100% - 40px);
  max-width: 1048px;
  margin: 0 auto;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section__regulamento-content h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  text-align: left;
  font-family: "UniversNextPro-BlackItalic", sans-serif;
}

.btn-regulamento {
  display: flex;
  width: 207px;
  height: 36px;
  padding: 0 16px 0 20px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  border-radius: 4px;
  background-color: #96d200;
  text-decoration: none;
  color: #192a6b;
  font-size: 16px;
  font-weight: 600;
}

.btn-regulamento:hover {
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
  .section__regulamento-content {
    flex-direction: column;
    justify-content: center;
  }
  .section__regulamento-corpo img {
    height: 220px;
    object-fit: cover;
  }
}

.section-calendario {
  background-color: #f3f4f6;
}

.cards-calendario-corridas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  box-sizing: border-box;
  margin-top: 20px;
}

.calendatio-title {
  color: #0b43a0;
  font-size: 24px;
  font-weight: 750;
  font-style: italic;
  margin: 0;
  font-family: "UniversNextPro-BlackItalic", sans-serif;
}

.card-corrida {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 200px;
  border: 1px solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
  border-radius: 8px;
  padding: 10px;
  background-color: #f3f4f6;
  box-shadow: 0px 5px 14px -1px rgba(0, 0, 0, 0.12);
}

.card-corrida img {
  max-width: 100%;
  height: auto;
}

.label-card-city {
  position: absolute;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #d9dee3;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  font-family: "Open Sans", sans-serif;
}

.date-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 25px;
  top: 42%;
  transform: translateY(-50%);
  text-align: center;
  font-weight: bold;
}

.info-container-text {
  padding-top: 8x;
}

.date-line {
  display: block;
  width: 2px;
  height: 17px;
  background-color: #c4cad2;
  margin-bottom: 4px;
}

.label-card-date {
  font-size: 14px;
  color: #333f5b;
  font-weight: 400;
}

.label-card-date span {
  display: block;
  font-size: 25px;
  color: #48536c;
  font-weight: 600;
}

.info-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 70px;
  padding-right: 40px;
  padding-top: 20px;
}

.label-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #333f5b;
}

.label-card-title h4 {
  margin: 0;
}

.label-card-address {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400px;
  color: #333f5b;
}

.label-card-registrationDate {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #333f5b;
}

.label-card-address p {
  margin: 0;
}

.label-card-registrationDate p {
  margin: 0;
}

.card-corrida a {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 40px;
  height: 40px;
  background-color: #95c11f;
  display: flex;
  align-items: center;
  border-radius: 4px;
  justify-content: center;
  text-decoration: none;
}

.card-corrida a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .cards-calendario-corridas {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .card-corrida {
    max-width: 100%;
    width: 100%;
  }

  .date-container {
    top: 50%;
  }
}

.bg-azul {
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
}

.bg-azul img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 100%;
  object-fit: cover;
}

.inscricao-text {
  padding: 12px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
}

.section__inscricao-corpo {
  position: relative;
  z-index: 2;
}

.section__inscricao-corpo h2 {
  justify-content: start;
  text-align: left;
  font-size: 24px;
  font-weight: 750;
  font-style: italic;
  color: #fff;
  font-family: "UniversNextPro-BlackItalic", sans-serif;
}

.valores-tabela {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  color: #fff;
  overflow: hidden;
}

.valores-tabela th,
.valores-tabela td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #95c11f;
}

.valores-tabela thead tr {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .bg-azul {
    padding: 10px 5px;
  }

  .bg-azul img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .valores-tabela {
    margin: 0 auto;
    text-align: left;
  }

  .valores-tabela th,
  .valores-tabela td {
    padding: 8px;
    text-align: left;
  }
}

.section-kit-atleta {
  padding: 20px;
  background-color: #f3f4f6;
  font-family: "Open Sans";
}

.section__kit-atleta-header {
  display: flex;
  align-items: center;
  gap: 90px;
  margin-bottom: 30px;
}

.kit-atleta-title h2 {
  color: #0b43a0;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "UniversNextPro-BlackItalic", sans-serif;
}

.kit-atleta-subtitle {
  color: #333f5b;
  font-size: 16px;
  font-style: normal;
  width: 288px;
  font-weight: 200;
  line-height: 180%;
}

.kit-atleta-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.card-kit {
  background-color: #fff;
  height: 179px;
  width: 160px;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 5px 14px -1px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-kit img {
  display: flex;
  height: 80px;
  width: 80px;
  padding: 10px;
  margin-bottom: 10px;
}

.card-kit span {
  font-size: 14px;
  color: #48536c;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.kit-atleta-content {
  margin-top: 30px;
}

.kit-atleta-content h3 {
  font-size: 16px;
  color: #48536c;
  font-weight: 700;
  margin-bottom: 15px;
}

.kit-atleta-content ol {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.kit-atleta-content li {
  font-size: 16px;
  color: #48536c;
  font-weight: 200;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .section__kit-atleta-header {
    display: block;
  }

  .kit-atleta-subtitle p {
    color: #333f5b;
    font-size: 16px;
    width: 100%;
    font-style: normal;
    font-weight: 200;
    line-height: 180%;
  }

  .kit-atleta-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 12px;
    justify-items: center;
  }

  .card-kit {
    width: 80%;
    height: auto;
  }

  .card-kit img {
    height: 60px;
    width: 60px;
  }
}

.section__beneficios-header {
  display: flex;
  align-items: center;
  gap: 90px;
  margin-bottom: 30px;
}

.beneficio-title h2 {
  color: #0b43a0;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "UniversNextPro-BlackItalic", sans-serif;
}

.beneficio-subtitle {
  color: #333f5b;
  font-size: 16px;
  font-style: normal;
  width: 288px;
  font-weight: 400;
  line-height: 180%;
}

.beneficio-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-radius: 4px;
}

.card-beneficio {
  width: 208px;
  height: auto;
}

.card-beneficio img {
  width: 100%;
  height: 179px;
  object-fit: cover;
  border-radius: 4px;
}

.card-beneficio h3 {
  color: #48536c;
  width: 160px;
  margin: 10px 0 5px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  font-family: "UniversNextPro-BlackItalic", sans-serif;
}

.card-beneficio p {
  color: #48536c;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
}

@media screen and (max-width: 768px) {
  .section__beneficios-header {
    display: block;
  }

  .beneficio-subtitle {
    margin-top: 18px;
  }

  .beneficio-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    border-radius: 4px;
  }

  .card-beneficio {
    width: 100%;
    height: auto;
  }

  .card-beneficio img {
    width: 100%;
    height: 179px;
    object-fit: cover;
  }

  .card-beneficio h3 {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .beneficio-cards {
    grid: auto/1fr;
  }
}

.banner-inscricao {
  position: relative;
  overflow: hidden;
}

.banner-inscricao__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(
    to right,
    #69e790 0%,
    #69e790 18%,
    #2b65d8 60%,
    #2b65d8 100%
  );
}

.banner-inscricao__bg img {
  width: 100%;
  object-fit: cover;
}

.banner-inscricao-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.banner-inscricao-content h2 {
  color: #fff;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 120%;
  width: 200px;
  font-family: "UniversNextPro-BlackItalic", sans-serif;
}

.banner-inscricao-content p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  width: 390px;
}

.banner-inscricao-content a {
  display: flex;
  width: 207px;
  height: 36px;
  padding: 0px 20px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  background-color: #96d200;
  border-radius: 4px;
  text-decoration: none;
  color: #192a6b;
  font-weight: 600;
}

.banner-inscricao-content a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .banner-inscricao__bg {
    background: linear-gradient(
      to top right,
      #2b65d8 0%,
      #2b65d8 65%,
      #69e790 100%
    );
  }
  .banner-inscricao-content {
    display: block;
  }

  .banner-inscricao-content p {
    width: auto;
  }
}

.footer {
  background-color: #2707be;
}

.footer-grid {
  padding: 34px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  display: block;
  object-fit: contain;
  object-position: center;
}

.footer-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 32px;
  height: 32px;
  border-radius: 50px;
}

.footer-social__link img {
  display: block;
  width: 24px;
  height: 24px;
}

@media only screen and (max-width: 992px) {
  .footer-grid {
    align-items: center;
    justify-content: space-between;
  }
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

.hidden {
  display: none !important;
}

.svg {
  display: block;
}

.svg svg {
  display: block;
  position: relative;
}

.svg--width svg {
  width: 100%;
}

.svg--height svg {
  height: 100%;
}

.section__wrapper {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1048px;
  margin: 0 auto;
  box-sizing: border-box;
}

.section {
  position: relative;
  padding: 50px 0;
  width: 100%;
}

.title-line {
  display: block;
  margin-top: 10px;
  width: 80px;
  height: 3px;
  background-color: #95c11f;
}

@media only screen and (max-width: 1200px) {
  .section__wrapper {
    padding: 0 20px;
    width: 100%;
  }
}
